From: Gerd Moellmann Date: Tue, 11 Sep 2001 12:31:56 +0000 (+0000) Subject: (Qinhibit_modification_hooks): New variable. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~62097 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=27ea0af23ca52a123a12a70d9327a33ce0e85bd1;p=emacs.git (Qinhibit_modification_hooks): New variable. (syms_of_insdel): Initialize and staticpro it. --- diff --git a/src/insdel.c b/src/insdel.c index 99576218b4b..134e8760ef0 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -66,6 +66,9 @@ Lisp_Object combine_after_change_list; /* Buffer which combine_after_change_list is about. */ Lisp_Object combine_after_change_buffer; + +Lisp_Object Qinhibit_modification_hooks; + /* Check all markers in the current buffer, looking for something invalid. */ @@ -2159,6 +2162,8 @@ syms_of_insdel () This affects `before-change-functions' and `after-change-functions',\n\ as well as hooks attached to text properties and overlays."); inhibit_modification_hooks = 0; + Qinhibit_modification_hooks = intern ("inhibit-modification-hooks"); + staticpro (&Qinhibit_modification_hooks); defsubr (&Scombine_after_change_execute); }